b493ad9f5b055afcaf1ce9e1a4b5fe4961a7bf75,netbeans/test/unit/src/net/sickill/off/OffListModelTest.java,OffListModelTest,elementNameMatches,#number#String#,202
Before Change
}
private boolean elementNameMatches(int index, String name) {
OffListElement ole = (OffListElement)model.getElementAt(index);
return ole.getFile().getName().equals(name);
}
After Change
}
private boolean elementNameMatches(int index, String name) {
OffListElement ole = model.getElementAt(index);
return ole.getFile().getName().equals(name);
}